home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-10-10 | 1.1 KB | 39 lines | [TEXT/MPS ] |
- # File MakeFile.MPW3.2 - Make MidiShare™ Primitives.
- #
- # The Smalltalk Virtual Machine has a SIZE resource #128
- # which allows the user to set the size of the heap zone
- # for user primitives. It is currently set to 1024K, you
- # may have to change this value to accomodate your routines.
- # This change is most easily accomplished with resEdit by
- # editing the st80.rcs file.
- #
- Libs = "{Libraries}"Interface.o ∂
- "{Libraries}"Runtime.o ∂
- "{CLibraries}"StdCLib.o ∂
- "{CLibraries}"CSANELib.o ∂
- "{CLibraries}"Math.o
-
- SUBSYS = uprim
- # define -d UNSAFE here if you want to live dangerously
- SAFETY =
- CDBUG = -sym on -mbg on -d ASSERT
- CPROC = -mc68020
- COptions = -W -s {SUBSYS} -b {SAFETY} {CPROC} {CDBUG}
-
-
- UserPrim ƒ st80-midi
-
- st80-midi ƒƒ st80.ru st80-midi.c.o st80.lib
- Link -ma power=pow -ra =52 -p -t APPL -w -c 'HPS4' st80-midi.c.o ∂
- st80.lib {Libs} -o st80-up
- SetFile -a B -c HPS4 -t APPL st80-up # set the bundle bit
- date > st80-midi
-
- st80-midi.c.o ƒ st80-midi.c UserPrim.h
- C {COptions} st80-midi.c -o st80-midi.c.o
-
- st80.ru ƒ st80.rcs
- Duplicate st80.rcs st80-up -y
- SetFile -a B -c HPS4 -t APPL st80-up # set the bundle bit
- date > st80.ru
-